home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Macintosh Tracker 1.20 / source / Tracker Client Folder / MiscInfo.h < prev   
Encoding:
Text File  |  1993-05-23  |  1.5 KB  |  55 lines  |  [TEXT/KAHL]

  1. /* MiscInfo.h */
  2.  
  3.  
  4. /********************************************************************************/
  5. /* generic includes */
  6.  
  7. //#define DEBUG /* debugging macros */
  8. //#define ALWAYSRESUME /* resume button availability */
  9. //#define THINKC_DEBUGGER /* break points in PRERR */
  10. //#define AUDIT /* audit file generation */
  11. //#define MEMDEBUG /* handle/ptr allocation checking */
  12.  
  13. #define _VIATIMER_ /* use VIA when profiling (comment out for ticks) */
  14. #pragma options(!class_names) /* make data segment smaller */
  15. #include "Utilities.h"
  16.  
  17.  
  18. /********************************************************************************/
  19. /* file creator information */
  20.  
  21. #define CREATORCODE ('∫Tcp')
  22.  
  23. #define NUMFILETYPES (1)
  24. #define FILETYPE1 ('∫Tcd')
  25.  
  26. #define FILETYPELIST {FILETYPE1}
  27.  
  28.  
  29. /********************************************************************************/
  30. /* memory consumption information */
  31.  
  32. #define NumMasters (50)
  33.  
  34. #define PRIMARYMEMCACHESIZE (16384)
  35. #define SECONDARYMEMCACHESIZE (8192)
  36. #define USETEMPMEM (False)
  37. #define GRABTEMPMEM (False)
  38.  
  39.  
  40. #define STACKSIZE (8192)
  41.  
  42.  
  43. /********************************************************************************/
  44. /* audit file creator */
  45.  
  46. #define AUDITCREATOR ('KAHL') /* THINK C creator */
  47.  
  48. /********************************************************************************/
  49. /* profile information */
  50.  
  51. #define ProfileNumSymbols (1000)  /* max number of symbols (functions) */
  52.  
  53. #define ProfileNumLevels (100)  /* max number of nested function calls */
  54.  
  55.